home *** CD-ROM | disk | FTP | other *** search
/ Libris Britannia 4 / science library(b).zip / science library(b) / PROGRAMM / CC_C / 0566.ZIP / ARCADD.MAC < prev    next >
Text File  |  1986-02-05  |  11KB  |  266 lines

  1. /*  ARC - Archive utility - ARCADD
  2.  
  3. $define(tag,$$segment(@1,$$index(@1,=)+1))#
  4. $define(version,Version $tag(
  5. TED_VERSION DB =3.39), created on $tag(
  6. TED_DATE DB =02/05/86) at $tag(
  7. TED_TIME DB =22:21:53))#
  8. $undefine(tag)#
  9.     $version
  10.  
  11. (C) COPYRIGHT 1985 by System Enhancement Associates; ALL RIGHTS RESERVED
  12.  
  13.     By:  Thom Henderson
  14.  
  15.     Description:
  16.          This file contains the routines used to add files to an archive.
  17.  
  18.     Language:
  19.          Computer Innovations Optimizing C86
  20. */
  21. #include <stdio.h>
  22. #include "arc.h"
  23.  
  24. addarc(num,arg,move,update,fresh)      /* add files to archive */
  25. int num;                               /* number of arguments */
  26. char *arg[];                           /* pointers to arguments */
  27. int move;                              /* true if moving file */
  28. int update;                            /* true if updating */
  29. int fresh;                             /* true if freshening */
  30. {
  31.     char *d, *dir();                   /* directory junk */
  32.     char buf[$strlen];                 /* pathname buffer */
  33.     char **path = NULL;                /* pointer to pointers to paths */
  34.     char **name = NULL;                /* pointer to pointers to names */
  35.     int nfiles = 0;                    /* number of files in lists */
  36.     int notemp;                        /* true until a template works */
  37.     int nowork = 1;                    /* true until files are added */
  38.     char *i, *rindex();                /* string indexing junk */
  39.     char *alloc(), *realloc();         /* memory allocators */
  40.     int m, n;                          /* indices */
  41.     unsigned int coreleft();           /* remaining memory reporter */
  42.  
  43.     if(num<1)                          /* if no files named */
  44.     {    num = 1;                      /* then fake one */
  45.          arg[0] = "*.*";               /* add everything */
  46.     }
  47.  
  48.     for(n=0; n<num; n++)               /* for each template supplied */
  49.     {    strcpy(buf,arg[n]);           /* get ready to fix path */
  50.          if(!(i=rindex(buf,'\\')))
  51.               if(!(i=rindex(buf,'/')))
  52.                    if(!(i=rindex(buf,':')))
  53.                         i = buf-1;
  54.          i++;                          /* pointer to where name goes */
  55.  
  56.          notemp = 1;                   /* reset files flag */
  57.          for(d=dir(arg[n],0); *d; d=dir(NULL,0))
  58.          {    notemp = 0;              /* template is giving results */
  59.               nfiles++;                /* add each matching file */
  60.               path = (char **)realloc(path,nfiles*sizeof(char **));
  61.               name = (char **)realloc(name,nfiles*sizeof(char **));
  62.               strcpy(i,d);             /* put name in path */
  63.               path[nfiles-1] = alloc(strlen(buf)+1);
  64.               strcpy(path[nfiles-1],buf);
  65.               name[nfiles-1] = d;      /* save name */
  66.  
  67.               if(coreleft()<5120)
  68.               {    nfiles = addbunch(nfiles,path,name,move,update,fresh);
  69.                    nowork = nowork && !nfiles;
  70.                    while(nfiles)
  71.                    {    free(path[--nfiles]);
  72.                         free(name[nfiles]);
  73.                    }
  74.                    free(path); free(name);
  75.                    path = name = NULL;
  76.               }
  77.          }
  78.          if(notemp && warn)
  79.               printf("No files match: %s\n",arg[n]);
  80.     }
  81.  
  82.     if(nfiles)
  83.     {    nfiles = addbunch(nfiles,path,name,move,update,fresh);
  84.          nowork = nowork && !nfiles;
  85.          while(nfiles)
  86.          {    free(path[--nfiles]);
  87.               free(name[nfiles]);
  88.          }
  89.          free(path); free(name);
  90.     }
  91.  
  92.     if(nowork && warn)
  93.          printf("No files were added.\n");
  94. }
  95.  
  96. int addbunch(nfiles,path,name,move,update,fresh) /* add a bunch of files */
  97. int nfiles;                            /* number of files to add */
  98. char **path;                           /* pointers to pathnames */
  99. char **name;                           /* pointers to filenames */
  100. int move;                              /* true if moving file */
  101. int update;                            /* true if updating */
  102. int fresh;                             /* true if freshening */
  103. {
  104.     char buf[$strlen];                 /* pathname buffer */
  105.     int m, n;                          /* indices */
  106.     char *d;                           /* swap pointer */
  107.     struct heads hdr;                  /* file header data storage */
  108.  
  109.     for(n=0; n<nfiles-1; n++)          /* sort the list of names */
  110.     {    for(m=n+1; m<nfiles; m++)
  111.          {    if(strcmp(name[n],name[m])>0)
  112.               {    d = path[n];
  113.                    path[n] = path[m];
  114.                    path[m] = d;
  115.                    d = name[n];
  116.                    name[n] = name[m];
  117.                    name[m] = d;
  118.               }
  119.          }
  120.     }
  121.  
  122.     for(n=0; n<nfiles-1; )             /* consolidate the list of names */
  123.     {    if(!strcmp(path[n],path[n+1]) /* if duplicate names */
  124.          || !strcmp(path[n],arcname)   /* or this archive */
  125.          || !strcmp(path[n],newname)   /* or the new version */
  126.          || !strcmp(path[n],bakname))  /* or its backup */
  127.          {    free(path[n]);           /* then forget the file */
  128.               free(name[n]);
  129.               for(m=n; m<nfiles-1; m++)
  130.               {    path[m] = path[m+1];
  131.                    name[m] = name[m+1];
  132.               }
  133.               nfiles--;
  134.          }
  135.          else n++;                     /* else test the next one */
  136.     }
  137.  
  138.     if(!strcmp(path[n],arcname)        /* special check for last file */
  139.     || !strcmp(path[n],newname)        /* courtesy of Rick Moore */
  140.     || !strcmp(path[n],bakname))
  141.     {    free(path[n]);
  142.          free(name[n]);
  143.          nfiles--;
  144.     }
  145.  
  146.     if(!nfiles)                        /* make sure we got some */
  147.          return 0;
  148.  
  149.     for(n=0; n<nfiles-1; n++)          /* watch out for duplicate names */
  150.          if(!strcmp(name[n],name[n+1]))
  151.               abort("Duplicate filenames:\n  %s\n  %s",path[n],path[n+1]);
  152.  
  153.     openarc(1);                        /* open archive for changes */
  154.  
  155.     for(n=0; n<nfiles; n++)            /* add each file in the list */
  156.          addfile(path[n],name[n],update,fresh);
  157.  
  158.     /* now we must copy over all files that follow our additions */
  159.  
  160.     while(readhdr(&hdr,arc))           /* while more entries to copy */
  161.     {    writehdr(&hdr,new);
  162.          filecopy(arc,new,hdr.size);
  163.     }
  164.     hdrver = 0;                        /* archive EOF type */
  165.     writehdr(&hdr,new);                /* write out our end marker */
  166.     closearc(1);                       /* close archive after changes */
  167.  
  168.     if(move)                           /* if this was a move */
  169.     {    for(n=0; n<nfiles; n++)       /* then delete each file added */
  170.          {    if(unlink(path[n]) && warn)
  171.               {    printf("Cannot unsave %s\n",path[n]);
  172.                    nerrs++;
  173.               }
  174.          }
  175.     }
  176.  
  177.     return nfiles;                     /* say how many were added */
  178. }
  179.  
  180. static addfile(path,name,update,fresh) /* add named file to archive */
  181. char *path;                            /* path name of file to add */
  182. char *name;                            /* name of file to add */
  183. int update;                            /* true if updating */
  184. int fresh;                             /* true if freshening */
  185. {
  186.     struct heads nhdr;                 /* data regarding the new file */
  187.     struct heads ohdr;                 /* data regarding an old file */
  188.     FILE *f, *fopen();                 /* file to add, opener */
  189.     long starts, ftell();              /* file locations */
  190.     int c;                             /* one char of file */
  191.     int upd = 0;                       /* true if replacing an entry */
  192.  
  193.     if(!(f=fopen(path,"rb")))
  194.     {    if(warn)
  195.          {    printf("Cannot read file: %s\n",path);
  196.               nerrs++;
  197.          }
  198.          return;
  199.     }
  200.  
  201.     strcpy(nhdr.name,name);            /* save name */
  202.     nhdr.size = 0;                     /* clear out size storage */
  203.     nhdr.crc = 0;                      /* clear out CRC check storage */
  204.     getstamp(f,&nhdr.date,&nhdr.time);
  205.  
  206.     /* position archive to spot for new file */
  207.  
  208.     if(arc)                            /* if adding to existing archive */
  209.     {    starts = ftell(arc);          /* where are we? */
  210.          while(readhdr(&ohdr,arc))     /* while more files to check */
  211.          {    if(!strcmp(ohdr.name,nhdr.name))
  212.               {    upd = 1;            /* replace existing entry */
  213.                    if(update || fresh) /* if updating or freshening */
  214.                    {    if(nhdr.date<ohdr.date
  215.                         || (nhdr.date==ohdr.date && nhdr.time<=ohdr.time))
  216.                         {    fseek(arc,starts,0);
  217.                              fclose(f);
  218.                              return;   /* skip if not newer */
  219.                         }
  220.                    }
  221.               }
  222.  
  223.               if(strcmp(ohdr.name,nhdr.name)>=0)
  224.                    break;              /* found our spot */
  225.  
  226.               writehdr(&ohdr,new);     /* entry preceeds update; keep it */
  227.               filecopy(arc,new,ohdr.size);
  228.               starts = ftell(arc);     /* now where are we? */
  229.          }
  230.  
  231.          if(upd)                       /* if an update */
  232.          {    if(note)
  233.                    printf("Updating file: %-12s  ",name);
  234.               fseek(arc,ohdr.size,1);
  235.          }
  236.          else if(fresh)                /* else if freshening */
  237.          {    fseek(arc,starts,0);     /* then do not add files */
  238.               fclose(f);
  239.               return;
  240.          }
  241.          else                          /* else adding a new file */
  242.          {    if(note)
  243.                    printf("Adding file:   %-12s  ",name);
  244.               fseek(arc,starts,0);     /* reset for next time */
  245.          }
  246.     }
  247.  
  248.     else                               /* no existing archive */
  249.     {    if(fresh)                     /* cannot freshen nothing */
  250.          {    fclose(f);
  251.               return;
  252.          }
  253.          else if(note)                 /* else adding a file */
  254.               printf("Adding file:   %-12s  ",name);
  255.     }
  256.  
  257.     starts = ftell(new);               /* note where header goes */
  258.     hdrver = $arcver;                  /* anything but end marker */
  259.     writehdr(&nhdr,new);               /* write out header skeleton */
  260.     pack(f,new,&nhdr);                 /* pack file into archive */
  261.     fseek(new,starts,0);               /* move back to header skeleton */
  262.     writehdr(&nhdr,new);               /* write out real header */
  263.     fseek(new,nhdr.size,1);            /* skip over data to next header */
  264.     fclose(f);                         /* all done with the file */
  265. }
  266.